home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gsfonts.postinst < prev    next >
Text File  |  2009-04-28  |  1KB  |  47 lines

  1. #! /bin/sh
  2. # postinst script for gsfonts
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postinst> `configure' <most-recently-configured-version>
  10. #        * <old-postinst> `abort-upgrade' <new version>
  11. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  12. #          <new-version>
  13. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  14. #          <failed-install-package> <version> `removing'
  15. #          <conflicting-package> <version>
  16. # for details, see http://www.debian.org/doc/debian-policy/ or
  17. # the debian-policy package
  18. #
  19.  
  20. case "$1" in
  21.     configure)
  22.     echo "(Re-)registering PostScript fonts..."
  23.     if [ -f /etc/defoma/hints/gsfonts.hints ]; then
  24.       defoma-font -q reregister-all /etc/defoma/hints/gsfonts.hints
  25.     fi
  26.     echo done.
  27.     ;;
  28.  
  29.     abort-upgrade|abort-remove|abort-deconfigure)
  30.  
  31.     ;;
  32.  
  33.     *)
  34.         echo "postinst called with unknown argument \`$1'" >&2
  35.         exit 1
  36.     ;;
  37. esac
  38.  
  39. # dh_installdeb will replace this with shell code automatically
  40. # generated by other debhelper scripts.
  41.  
  42.  
  43.  
  44. exit 0
  45.  
  46.  
  47.